Welcome![Sign In][Sign Up]
Location:
Search - ctrl alt delete

Search list

[Windows DevelopCtrl+Alt+Delete

Description: 用Delphi编写禁止Ctrl+Alt+Delete热键钩子(线程注入)-with Delphi ban Ctrl Alt Delete hotkeys hook (thread injection)
Platform: | Size: 199440 | Author: | Hits:

[OS programTurnOff

Description: 这是一个关闭显示器的小工具,程序执行后点关闭按钮后,显示器就进入休眠状态,且鼠标和键盘都被锁定,要唤醒显示器时 ,只需按下键盘任意键,但此时键盘鼠标依然被锁定!解锁键为:Ctrl+Alt+Delete
Platform: | Size: 26223 | Author: sjw | Hits:

[Otherwangyue1

Description: 使用方法: 1: 包含C++类CCADMgr头文件,如:#include \"CADMgr.h\" 2: 定义变量如:CCADMgr m_cadMgr 3: 设置Ctrl+Alt+Del消息通知窗口,如:m_cadMgr.SetTargetWnd(m_hWnd) 4: 禁用或启用,如:m_cadMgr.DisableCAD(m_bDisabled) 5: 响应消息: 声明函数:afx_msg void OnHotKey(WPARAM wParam, LPARAM lParam) 消息映射:ON_MESSAGE(WM_HOTKEY, OnHotKey) 函数实现: void CTrapCADDlg::OnHotKey(WPARAM wParam, LPARAM lParam) { WORD wKey = HIWORD(lParam) WORD wModifier = LOWORD(lParam) BOOL bAltDown = ((wModifier & VK_MENU) != 0 ? TRUE : FALSE) BOOL bCtrlDown = ((wModifier & VK_CONTROL) != 0 ? TRUE : FALSE) //按下Ctrl + Alt + Del组合键 if(bCtrlDown && bAltDown && wKey == VK_DELETE) AfxMessageBox(\"对不起, Ctrl+Alt+Delete组合键已经被禁用了!\", MB_OK|MB_IConERROR)
Platform: | Size: 119281 | Author: 王跃 | Hits:

[Windows DevelopCtrl+Alt+Delete

Description: 用Delphi编写禁止Ctrl+Alt+Delete热键钩子(线程注入)-with Delphi ban Ctrl Alt Delete hotkeys hook (thread injection)
Platform: | Size: 199680 | Author: | Hits:

[OS programTurnOff

Description: 这是一个关闭显示器的小工具,程序执行后点关闭按钮后,显示器就进入休眠状态,且鼠标和键盘都被锁定,要唤醒显示器时 ,只需按下键盘任意键,但此时键盘鼠标依然被锁定!解锁键为:Ctrl+Alt+Delete-This is a small tool to turn off the display, the program was closed after the execution button, the display will enter the sleep state, and the mouse and keyboard are locked, to awaken the display, simply press any key keyboard, but keyboard and mouse at this time still locked! Unlock keys for: Ctrl+ Alt+ Delete
Platform: | Size: 25600 | Author: sjw | Hits:

[Otherwangyue1

Description: 使用方法: 1: 包含C++类CCADMgr头文件,如:#include "CADMgr.h" 2: 定义变量如:CCADMgr m_cadMgr 3: 设置Ctrl+Alt+Del消息通知窗口,如:m_cadMgr.SetTargetWnd(m_hWnd) 4: 禁用或启用,如:m_cadMgr.DisableCAD(m_bDisabled) 5: 响应消息: 声明函数:afx_msg void OnHotKey(WPARAM wParam, LPARAM lParam) 消息映射:ON_MESSAGE(WM_HOTKEY, OnHotKey) 函数实现: void CTrapCADDlg::OnHotKey(WPARAM wParam, LPARAM lParam) { WORD wKey = HIWORD(lParam) WORD wModifier = LOWORD(lParam) BOOL bAltDown = ((wModifier & VK_MENU) != 0 ? TRUE : FALSE) BOOL bCtrlDown = ((wModifier & VK_CONTROL) != 0 ? TRUE : FALSE) //按下Ctrl + Alt + Del组合键 if(bCtrlDown && bAltDown && wKey == VK_DELETE) AfxMessageBox("对不起, Ctrl+Alt+Delete组合键已经被禁用了!", MB_OK|MB_IConERROR) -Usage: 1: contains C++ Category CCADMgr header files, such as:# Include
Platform: | Size: 118784 | Author: 王跃 | Hits:

[Windows DevelopGINA

Description: 在Windows2000中Ctrl-Alt-Delete组合键的处理如下: Winlogon初始化的时候,在系统中注册了CTRL+ALT+DEL Secure Attention Sequence(SAS)热键,并且在WinSta0 Windows 系统中创建三个桌面。 SAS热键的注册使得Winlogon成为第一个处理CTRL+ALT+DEL的进程,所以保证了没有其他应用程序能够处理这个热键。 在 Windows NT/Windows 2000/Windows XP中, WinSta0 是表示物理屏幕、鼠标和键盘的Windows系统对象的名字。Winlogon在WinSta0 Windows系统中创建了SAS窗口(窗口标题是"SAS Window")和如下三个桌面。 Winlogon 桌面 应用程序 桌面 屏幕保护 桌面当用户按下Ctrl-Alt-Delete组合键时,Winlogon桌面上的SAS窗口收到它注册的系统热键消息(WM_HOTKEY) SAS Window窗口处理这个消息调用Graphical Identification and Authentication(GINA)动态连接库中的相关函数…… -Graphical Identification and Authentication(GINA)
Platform: | Size: 79872 | Author: 贾明 | Hits:

[OS programclose_ctrl_alt_delete

Description: 可以有效屏蔽任务管理器,通过屏蔽ctrl+alt+delete-Can effectively shield Task Manager, by shielding ctrl+ alt+ delete
Platform: | Size: 91136 | Author: ababab111 | Hits:

[OtherCloseMonitor

Description: 功能是关闭显示器,按Ctrl+Alt+Delete可以再打开显示器。这个是为那些显示器没自带关闭键的电脑设计的,在作者机器上能正常关闭显示器。-Feature is turned off display, press Ctrl+ Alt+ Delete to re-open the display. This is for those who do not own close button displays the computer-designed, the author can be a normal shutdown of the machine on display.
Platform: | Size: 4096 | Author: pcy | Hits:

[Process-ThreadRemote_into_the_sourcecode

Description: 为了屏蔽Ctrl+Alt+Delete这个功能,花了不少时间,也学了不少东西,也经历了本本被偷的悲剧,哎~代码都是从DSK V1 Final中抠出来的,而且我把远线程注入写成了一个Class。DLL用的是MFC的Dynamic-Dll 其实,如果你选择WH_KEYBOARD HOOK,那么提到SE_DEBUG之后,OS会帮你把DLL注入到Winlogon,免去了自己使用远线程的麻烦。但是小花说,用全局钩子注入不是好孩子,所以…… DSK V1 Final Update: *增加主程序重复运行情况处理 *增加屏蔽Ctrl+Alt+Delete *修正Ctrl+Shift的一个BUG *增加屏蔽Ctrl+Shift+Esc 修正了,DLL改用Windows-Standard-Dll,应该可以普遍适用了。不过有可能在Vista下还需要使用管理员运行。不过话说MFC的Dynamic DLL只有10K多,StdDll居然有40KB多…… -In order to shield Ctrl+ Alt+ Delete this function, spent a lot of time, but also learned a lot, also experienced the tragedy of the stolen books, hey ~ code is from DSK V1 Final in the pull out, and I put away thread is written into a Class. Using a MFC-DLL Dynamic-Dll In fact, if you choose WH_KEYBOARD HOOK, then after that SE_DEBUG, OS will help you to DLL injected into the Winlogon, eliminates the trouble of their own thread using the remote. But the flowers that the injection is not a good boy with a global hook, so ... ... DSK V1 Final Update: * Repeat the operation to increase the main program processing * Increase the shielding Ctrl+ Alt+ Delete * Fixed a BUG Ctrl+ Shift * Increase the shielding Ctrl+ Shift+ Esc Fixed, DLL use Windows-Standard-Dll, should be universally applied. However, there may also need to use an administrator under Vista to run. But having said that the Dynamic DLL MFC only 10K more, StdDll actually have more than 40KB ... ...
Platform: | Size: 20480 | Author: zhaoyadong | Hits:

[Delphi VCLctrl-alt-del

Description: 使用全称钩子hook屏蔽ctrl+alt+delete,也就是禁用任务管理器-With the full hook hook shield ctrl+ alt+ delete, task manager is disabled
Platform: | Size: 197632 | Author: goupipudun | Hits:

[e-languagelock

Description: 使用易语言编写的挂机锁。屏蔽ctrl alt delete esc 任务管理器 支持重启继续有效。-Written using easy to hook lock. Shielding ctrl alt delete esc Task Manager supports restart remain in force.
Platform: | Size: 165888 | Author: 马宝明 | Hits:

[Other121

Description: I am developing an application where I need to secure a workstation for periods of time. I can use BlockInput to stop users from task switching or messing with the keyboard, but I would like to disable Ctrl-Alt-Delete. It seems there seems to be only one real way I know about: Write a replacement Gina Driver to eat the keyboard events I dont want. Does anyone have a good template for this in Visual Basic .Net? Or if there is an easier way that work in Win2K I am all ears!
Platform: | Size: 2048 | Author: Ys | Hits:

[OS program122

Description: I am developing an application where I need to secure a workstation for periods of time. I can use BlockInput to stop users from task switching or messing with the keyboard, but I would like to disable Ctrl-Alt-Delete. It seems there seems to be only one real way I know about: Write a replacement Gina Driver to eat the keyboard events I dont want. Does anyone have a good template for this in Visual Basic .Net?
Platform: | Size: 2048 | Author: Ys | Hits:

[Delphi VCL1234123

Description: I am developing an application where I need to secure a workstation for periods of time. I can use BlockInput to stop users from task switching or messing with the keyboard, but I would like to disable Ctrl-Alt-Delete. It seems there seems to be only one real way I know about: Write a replacement Gina Driver to eat the keyboard events I dont want. Does anyone have a good-I am developing an application where I need to secure a workstation for periods of time. I can use BlockInput to stop users from task switching or messing with the keyboard, but I would like to disable Ctrl-Alt-Delete. It seems there seems to be only one real way I know about: Write a replacement Gina Driver to eat the keyboard events I dont want. Does anyone have a good
Platform: | Size: 2048 | Author: Ys | Hits:

[Hook apiGouZi

Description: C#实现的钩全局键盘钩子,可钩住触ctrl+alt+delete之外的所有键盘输入-C# implementation of the global keyboard hook hook can be hooked touch ctrl+ alt+ delete all but the keyboard input
Platform: | Size: 36864 | Author: 吕剑波 | Hits:

[OS programDisable-Task-Manager

Description: 能够禁用任务管理,按Ctrl+Alt+Delete将会显示任务管理器被禁用-Able to disable Task Manager, press Ctrl+ Alt+ Delete will display the Task Manager is disabled
Platform: | Size: 11264 | Author: 付永明 | Hits:

[OS programAlt_control_delete_src

Description: 模拟CTRL+ALT+DELETE的按键。类似于可以用来调出任务管理器。-Simulation CTRL ALT DELETE keys. Like can be used to bring up the Task Manager.
Platform: | Size: 3072 | Author: ababab111 | Hits:

[Hook apiTwoTiger

Description: 一个整人的小游戏,会让对方的QQ掉线,键盘自锁,即不能输入任何字符,鼠标光标不能移动。只能启用ctrl+d,或者ctrl+alt+delete.-A whole game and make each other' s QQ dropped, the keyboard is self-locking, that is not input any character can not move the mouse cursor. The only to enable ctrl+d, or ctrl+alt+delete.
Platform: | Size: 676864 | Author: 董航瑞 | Hits:

[OS programtrapkeys

Description: 禁用键盘输入,包括win键和资源管理器组合键-Disable Keyboard win ctrl+alt+delete
Platform: | Size: 13113344 | Author: 陈龙 | Hits:
« 12 3 »

CodeBus www.codebus.net